| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- // @ts-nocheck
- import { PermissionAction } from '@supabase/shared-types/out/constants'
- import { useParams } from 'common'
- import { partition } from 'lodash'
- import { MessageCircle } from 'lucide-react'
- import { useRouter } from 'next/router'
- import { useState } from 'react'
- import { toast } from 'sonner'
- import { Button } from 'ui'
- import { Overview } from '@/components/interfaces/BranchManagement/Overview'
- import BranchLayout from '@/components/layouts/BranchLayout/BranchLayout'
- import { DefaultLayout } from '@/components/layouts/DefaultLayout'
- import { PageLayout } from '@/components/layouts/PageLayout/PageLayout'
- import { ScaffoldContainer, ScaffoldSection } from '@/components/layouts/Scaffold'
- import { AlertError } from '@/components/ui/AlertError'
- import { ButtonTooltip } from '@/components/ui/ButtonTooltip'
- import { DocsButton } from '@/components/ui/DocsButton'
- import { NoPermission } from '@/components/ui/NoPermission'
- import { TextConfirmModal } from '@/components/ui/TextConfirmModalWrapper'
- import { useBranchDeleteMutation } from '@/data/branches/branch-delete-mutation'
- import { Branch, useBranchesQuery } from '@/data/branches/branches-query'
- import { useGitHubConnectionsQuery } from '@/data/integrations/github-connections-query'
- import { useSendEventMutation } from '@/data/telemetry/send-event-mutation'
- import { useAsyncCheckPermissions } from '@/hooks/misc/useCheckPermissions'
- import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
- import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
- import { DOCS_URL } from '@/lib/constants'
- import { useAppStateSnapshot } from '@/state/app-state'
- import type { NextPageWithLayout } from '@/types'
- const BranchesPage: NextPageWithLayout = () => {
- const router = useRouter()
- const { ref } = useParams()
- const snap = useAppStateSnapshot()
- const { data: project } = useSelectedProjectQuery()
- const { data: selectedOrg } = useSelectedOrganizationQuery()
- const [selectedBranchToDelete, setSelectedBranchToDelete] = useState<Branch>()
- const { mutate: sendEvent } = useSendEventMutation()
- const isBranch = project?.parent_project_ref !== undefined
- const projectRef =
- project !== undefined ? (isBranch ? project.parent_project_ref : ref) : undefined
- const { can: canReadBranches, isSuccess: isPermissionsLoaded } = useAsyncCheckPermissions(
- PermissionAction.READ,
- 'preview_branches'
- )
- const {
- data: connections,
- error: connectionsError,
- isPending: isLoadingConnections,
- isSuccess: isSuccessConnections,
- isError: isErrorConnections,
- } = useGitHubConnectionsQuery({
- organizationId: selectedOrg?.id,
- })
- const {
- data: branches,
- error: branchesError,
- isPending: isLoadingBranches,
- isError: isErrorBranches,
- isSuccess: isSuccessBranches,
- } = useBranchesQuery({ projectRef })
- const [[mainBranch], previewBranchesUnsorted] = partition(branches, (branch) => branch.is_default)
- const previewBranches = previewBranchesUnsorted.sort((a, b) =>
- new Date(a.updated_at) < new Date(b.updated_at) ? 1 : -1
- )
- const githubConnection = connections?.find((connection) => connection.project.ref === projectRef)
- const repo = githubConnection?.repository.name ?? ''
- const isError = isErrorConnections || isErrorBranches
- const isLoading = isLoadingConnections || isLoadingBranches
- const isSuccess = isSuccessConnections && isSuccessBranches
- const isGithubConnected = githubConnection !== undefined
- const { mutate: deleteBranch, isPending: isDeleting } = useBranchDeleteMutation({
- onSuccess: () => {
- toast.success('Successfully deleted branch')
- setSelectedBranchToDelete(undefined)
- },
- })
- const generateCreatePullRequestURL = (branch?: string) => {
- if (githubConnection === undefined) return 'https://github.com'
- return branch !== undefined
- ? `https://github.com/${githubConnection.repository.name}/compare/${mainBranch?.git_branch}...${branch}`
- : `https://github.com/${githubConnection.repository.name}/compare`
- }
- const onConfirmDeleteBranch = () => {
- if (selectedBranchToDelete === undefined) return console.error('No branch selected')
- const {
- project_ref: branchRef,
- parent_project_ref: projectRef,
- persistent,
- } = selectedBranchToDelete
- deleteBranch(
- { branchRef, projectRef },
- {
- onSuccess: () => {
- if (branchRef === ref) {
- router.push(`/project/${projectRef}/branches`)
- }
- // Track delete button click
- sendEvent({
- action: 'branch_delete_button_clicked',
- properties: {
- branchType: persistent ? 'persistent' : 'preview',
- origin: 'branches_page',
- },
- groups: {
- project: projectRef ?? 'Unknown',
- organization: selectedOrg?.slug ?? 'Unknown',
- },
- })
- },
- }
- )
- }
- return (
- <>
- <ScaffoldContainer>
- <ScaffoldSection>
- <div className="col-span-12">
- <div className="space-y-4">
- {isPermissionsLoaded && !canReadBranches ? (
- <NoPermission resourceText="view this project's branches" />
- ) : (
- <>
- {isErrorConnections && (
- <AlertError
- error={connectionsError}
- subject="Failed to retrieve GitHub integration connection"
- />
- )}
- {isErrorBranches && (
- <AlertError
- error={branchesError}
- subject="Failed to retrieve preview branches"
- />
- )}
- {!isError && (
- <Overview
- isGithubConnected={isGithubConnected}
- isLoading={isLoading}
- isSuccess={isSuccess}
- repo={repo}
- mainBranch={mainBranch}
- previewBranches={previewBranches}
- onSelectCreateBranch={() => snap.setShowCreateBranchModal(true)}
- onSelectDeleteBranch={setSelectedBranchToDelete}
- generateCreatePullRequestURL={generateCreatePullRequestURL}
- />
- )}
- </>
- )}
- </div>
- </div>
- </ScaffoldSection>
- </ScaffoldContainer>
- <TextConfirmModal
- variant="warning"
- visible={selectedBranchToDelete !== undefined}
- onCancel={() => setSelectedBranchToDelete(undefined)}
- onConfirm={() => onConfirmDeleteBranch()}
- loading={isDeleting}
- title="Delete branch"
- confirmLabel="Delete branch"
- confirmPlaceholder="Type in name of branch"
- confirmString={selectedBranchToDelete?.name ?? ''}
- alert={{
- title: 'You cannot recover this branch once deleted',
- }}
- text={
- <>
- This will delete your database preview branch{' '}
- <span className="text-bold text-foreground">{selectedBranchToDelete?.name}</span>.
- </>
- }
- />
- </>
- )
- }
- BranchesPage.getLayout = (page) => {
- const BranchesPageWrapper = () => {
- const snap = useAppStateSnapshot()
- const { can: canCreateBranches } = useAsyncCheckPermissions(
- PermissionAction.CREATE,
- 'preview_branches',
- {
- resource: { is_default: false },
- }
- )
- const primaryActions = (
- <ButtonTooltip
- type="primary"
- disabled={!canCreateBranches}
- onClick={() => snap.setShowCreateBranchModal(true)}
- tooltip={{
- content: {
- side: 'bottom',
- text: !canCreateBranches
- ? 'You need additional permissions to create branches'
- : undefined,
- },
- }}
- >
- Create branch
- </ButtonTooltip>
- )
- const secondaryActions = (
- <div className="flex items-center gap-x-2">
- <Button asChild type="text" icon={<MessageCircle className="text-muted" strokeWidth={1} />}>
- <a
- target="_blank"
- rel="noreferrer"
- href="https://github.com/orgs/briven/discussions/18937"
- >
- Branching feedback
- </a>
- </Button>
- <DocsButton href={`${DOCS_URL}/guides/platform/branching`} />
- </div>
- )
- return (
- <PageLayout
- title="Branches"
- subtitle="Manage your database preview branches and deployments"
- primaryActions={primaryActions}
- secondaryActions={secondaryActions}
- >
- {page}
- </PageLayout>
- )
- }
- return (
- <DefaultLayout>
- <BranchLayout>
- <BranchesPageWrapper />
- </BranchLayout>
- </DefaultLayout>
- )
- }
- export default BranchesPage
|